home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / m56000_2.arc / SIN16.ASM < prev    next >
Encoding:
Assembly Source File  |  1986-01-19  |  819 b   |  23 lines

  1. sin16   macro   twiddle
  2. ; 16 point fft cosine table
  3.       org     x:twiddle
  4.       dc       8388607    ; 1    0 
  5.       dc       7750063    ; .9238796    1 
  6.       dc       5931641    ; .7071068    2 
  7.       dc       3210181    ; .3826835    3 
  8.       dc       0    ;-4.371139E-08    4 
  9.       dc      -3210182    ;-.3826836    5 
  10.       dc      -5931641    ;-.7071068    6 
  11.       dc      -7750063    ;-.9238797    7 
  12. ; 16 point fft sine table
  13.       org     y:twiddle
  14.       dc       0    ; 0    0 
  15.       dc      -3210181    ;-.3826835    1 
  16.       dc      -5931641    ;-.7071068    2 
  17.       dc      -7750062    ;-.9238796    3 
  18.       dc      -8388607    ;-1    4 
  19.       dc      -7750062    ;-.9238795    5 
  20.       dc      -5931641    ;-.7071068    6 
  21.       dc      -3210180    ;-.3826833    7 
  22.       endm
  23.